home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 06 / alib / skip_nl.asm < prev    next >
Assembly Source File  |  1991-08-22  |  347b  |  25 lines

  1.     include    asm.inc
  2.  
  3.     public    strskp_line
  4.  
  5.     .code
  6.  
  7. ;;    strskp line
  8. ;
  9. ;    entry    DS:SI    string pointer
  10. ;    exit    SI    updated to next line but not past \0
  11. ;        AL    delimiting char (either 0 or 0Ah)
  12. ;
  13. strskp_line proc
  14.     lodsb
  15.     cmp    al,NL_CHAR
  16.     ja    strskp_line
  17.     je    skl1
  18.     cmp    al,NULL_CHAR
  19.     jne    strskp_line
  20.     dec    si
  21. skl1:    ret
  22. strskp_line endp
  23.  
  24.     end
  25.